home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
SYS
/
s
/
Locale.yacdp
< prev
next >
Wrap
Text File
|
1996-09-26
|
1KB
|
38 lines
/* $VER: 1.2 © 1994 by Frank Würkner. Show usage of localized scripts. */
SIGNAL ON SYNTAX /* check syntax */
SIGNAL ON ERROR /* check if command succeeds */
OPTIONS FAILAT 6 /* ignore warnings */
ADDRESS 'YACDP' /* send to YACDP */
'GETVAR LANGUAGE'
/* -------------------------- BEGIN OF YOUR CODE ------------------------- */
select
when LANGUAGE='German' then
'REQUESTER DUMMY "AREXX" "Dieser Text ist in deiner Muttersprache!" "Ja, ich geb es zu"'
otherwise
'REQUESTER DUMMY "AREXX" "This message is in your mothertongue!" "How true"'
end
/* --------------------------- END OF YOUR CODE -------------------------- */
EXIT
SYNTAX:
select
when LANGUAGE='German' then
SAY "AREXX Fehler in Zeile" SIGL ":" ERRORTEXT(RC)
otherwise
SAY "AREXX error at line" SIGL ":" ERRORTEXT(RC)
end
EXIT
ERROR:
select
when LANGUAGE='German' then
SAY "YACDP Fehler in Zeile" SIGL ":" ERR
otherwise
SAY "YACDP error at line" SIGL ":" ERR
end
EXIT